home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH06_1.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  692b  |  33 lines

  1. #include "stdio.h"
  2.  
  3. #define START  7
  4. #define END   -5
  5.  
  6. void main()
  7. {
  8. int index;
  9.  
  10.    for(index = START ; index >= END ; index = index - 1)
  11.       printf("The value of the count is now %2d\n", index);
  12. }
  13.  
  14.  
  15.  
  16. /* Result of execution
  17.  
  18. The value of the count is now  7
  19. The value of the count is now  6
  20. The value of the count is now  5
  21. The value of the count is now  4
  22. The value of the count is now  3
  23. The value of the count is now  2
  24. The value of the count is now  1
  25. The value of the count is now  0
  26. The value of the count is now -1
  27. The value of the count is now -2
  28. The value of the count is now -3
  29. The value of the count is now -4
  30. The value of the count is now -5
  31.  
  32. */
  33.